home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Extras / Development / RKM_Companion_v2.04 / Clipboard / smakefile < prev   
Encoding:
Makefile  |  1996-03-20  |  302 b   |  13 lines

  1. CFLAGS = nostackcheck structureequivalence ignore=73
  2.  
  3. all: changehook_test clipdemo
  4.  
  5. changehook_test: changehook_test.c cbio.c hookface.a
  6.     sc link $(CFLAGS) saveds changehook_test.c cbio.c hookface.a
  7.  
  8. clipdemo: clipdemo.c cbio.c
  9.     sc link $(CFLAGS) saveds clipdemo.c cbio.c
  10.  
  11. clean:
  12.     -delete \#?.(o|lnk)
  13.